'Declaration
Public Function New( _ ByVal operationResult As OperationResult, _ ByVal valueArray() As Object _ )
'Usage
Dim operationResult As OperationResult Dim valueArray() As Object Dim instance As New ValueArrayResult(operationResult, valueArray)
public ValueArrayResult( OperationResult operationResult, object[] valueArray )
public: ValueArrayResult( OperationResult^ operationResult, array<Object^>^ valueArray )
Parameters
- operationResult
- The operation result to be copied from.
The value of this parameter cannot be
null
(Nothing
in Visual Basic). - valueArray
- A value array that is a successful result of the operation.
The value of this parameter can be
null
(Nothing
in Visual Basic).The individual elements of the parameter value can be
null
(Nothing
in Visual Basic).